Copy and Paste the Javascript bookmarklets below to create new bookmarks in your browser. 
These bookmarklets will facilitate Tumblr investigations.

In order for the bookmarklets to work, you must be currently browsing the home page of a Tumblr blog (such as example.tumblr.com)
at the time you click on the bookmark button.

Tumblr Archive
javascript: {  var currentLocation = window.location.hostname;  
var newLocation = currentLocation + "/archive";  
window.location.replace("http://" + newLocation);   }

Tumblr Full Photo Viewer
javascript: {  var currentLocation = window.location.hostname;  
var newLocation = currentLocation + "/avatar/512";  
window.location.replace("https://api.tumblr.com/v2/blog/" + newLocation);   }

Tumblr Likes
javascript: {  var currentLocation = window.location.hostname;  
var newLocation = currentLocation + "/likes";  
window.location.replace("http://" + newLocation);   }

Tumblr Following
javascript: {  var currentLocation = window.location.hostname;  
var newLocation = currentLocation + "/following";  
window.location.replace("http://" + newLocation);   }

Tumblr Followers
javascript: {  var currentLocation = window.location.hostname;  
var newLocation = currentLocation + "/followers";  
window.location.replace("http://" + newLocation);   }
